home *** CD-ROM | disk | FTP | other *** search
- #include <Errors.h>
- #include <Gestalt.h>
- #include <stdio.h>
-
- //============================================================================
-
- void main (void)
- {
- OSErr err;
- long response = 0;
-
- err = Gestalt('SPJ!', &response);
-
- printf("%ld %lx\n", err, response);
- }
-
- //============================================================================
-